Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | 'use client'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { cn } from '@/lib/utils'; import { Card, CardContent } from '@/components/ui/card'; export interface ResponsiveTableColumn<T = any> { key: string; label: string; render: (item: T) => React.ReactNode; className?: string; mobileLabel?: string; // Custom label for mobile view hideOnMobile?: boolean; // Hide this column on mobile } export interface ResponsiveTableProps<T = any> { columns: ResponsiveTableColumn<T>[]; data: T[]; keyExtractor: (item: T, index: number) => string | number; className?: string; emptyMessage?: string; onRowClick?: (item: T) => void; } /** * Responsive Table Component * * Features: * - Desktop: Traditional table layout * - Mobile: Card-based layout * - Customizable columns * - Click handlers * - Empty state */ export function ResponsiveTable<T = any>({ columns, data, keyExtractor, className, emptyMessage, onRowClick}: ResponsiveTableProps<T>) { const { t } = useTranslation(); if (data.length === 0) { return ( <div className="text-center py-12 text-muted-foreground"> {emptyMessage || t('common:noDataAvailable')} </div> ); } const visibleColumns = columns.filter(col => !col.hideOnMobile); return ( <> {/* Desktop Table View */} <div className={cn('hidden md:block overflow-x-auto', className)}> <table className="w-full"> <thead> <tr className="border-b border-border dark:border-slate-700/50"> {columns.map((column) => ( <th key={column.key} className={cn( 'text-left py-3 px-4 text-sm font-medium text-muted-foreground dark:text-slate-300', column.className )} > {column.label} </th> ))} </tr> </thead> <tbody> {data.map((item, index) => ( <tr key={keyExtractor(item, index)} onClick={() => onRowClick?.(item)} className={cn( 'border-b border-border transition-colors dark:border-slate-800/50', onRowClick && 'cursor-pointer hover:bg-muted/50 dark:hover:bg-slate-800/30' )} > {columns.map((column) => ( <td key={column.key} className={cn( 'py-3 px-4 text-sm text-foreground dark:text-slate-300', column.className )} > {column.render(item)} </td> ))} </tr> ))} </tbody> </table> </div> {/* Mobile Card View */} <div className="md:hidden space-y-3"> {data.map((item, index) => ( <Card key={keyExtractor(item, index)} onClick={() => onRowClick?.(item)} className={cn( onRowClick && 'cursor-pointer hover:bg-muted/50 dark:hover:bg-slate-800/30 transition-colors' )} > <CardContent className="p-4 space-y-3"> {visibleColumns.map((column) => ( <div key={column.key} className="flex justify-between items-start gap-3"> <span className="text-sm font-medium text-muted-foreground min-w-[100px]"> {column.mobileLabel || column.label}: </span> <div className="text-sm text-foreground dark:text-slate-300 flex-1 text-right"> {column.render(item)} </div> </div> ))} </CardContent> </Card> ))} </div> </> ); } /** * Simple Responsive Table * For basic use cases with string/number data */ export interface SimpleColumn { key: string; label: string; mobileLabel?: string; hideOnMobile?: boolean; className?: string; } export interface SimpleResponsiveTableProps { columns: SimpleColumn[]; data: Record<string, any>[]; keyField?: string; className?: string; emptyMessage?: string; onRowClick?: (item: Record<string, any>) => void; } export function SimpleResponsiveTable({ columns, data, keyField = 'id', className, emptyMessage, onRowClick}: SimpleResponsiveTableProps) { const { t } = useTranslation(); const tableColumns: ResponsiveTableColumn[] = columns.map(col => ({ key: col.key, label: col.label, mobileLabel: col.mobileLabel, hideOnMobile: col.hideOnMobile, className: col.className, render: (item: Record<string, any>) => { const value = item[col.key]; if (value === null || value === undefined) return '-'; if (typeof value === 'boolean') return value ? t('common:yes') : t('common:no'); return String(value); }})); return ( <ResponsiveTable columns={tableColumns} data={data} keyExtractor={(item) => item[keyField]} className={className} emptyMessage={emptyMessage || t('common:noDataAvailable')} onRowClick={onRowClick} /> ); } /** * Responsive Data Grid * Grid-based layout for both desktop and mobile */ export interface DataGridColumn<T = any> { key: string; label: string; render: (item: T) => React.ReactNode; span?: number; // Grid column span (1-12) } export interface ResponsiveDataGridProps<T = any> { columns: DataGridColumn<T>[]; data: T[]; keyExtractor: (item: T, index: number) => string | number; className?: string; emptyMessage?: string; onItemClick?: (item: T) => void; } export function ResponsiveDataGrid<T = any>({ columns, data, keyExtractor, className, emptyMessage, onItemClick}: ResponsiveDataGridProps<T>) { const { t } = useTranslation(); if (data.length === 0) { return ( <div className="text-center py-12 text-muted-foreground"> {emptyMessage} </div> ); } return ( <div className={cn('space-y-3', className)}> {data.map((item, index) => ( <Card key={keyExtractor(item, index)} onClick={() => onItemClick?.(item)} className={cn( onItemClick && 'cursor-pointer hover:bg-muted/50 dark:hover:bg-slate-800/30 transition-colors' )} > <CardContent className="p-4"> <div className="grid grid-cols-1 md:grid-cols-12 gap-3"> {columns.map((column) => ( <div key={column.key} className={cn( 'flex flex-col', column.span ? `md:col-span-${column.span}` : 'md:col-span-1' )} > <span className="text-xs font-medium text-muted-foreground mb-1"> {column.label} </span> <div className="text-sm text-foreground dark:text-slate-300"> {column.render(item)} </div> </div> ))} </div> </CardContent> </Card> ))} </div> ); } /** * Hook for responsive table state */ export function useResponsiveTable<T = any>(initialData: T[]) { const [data, setData] = React.useState<T[]>(initialData); const [sortKey, setSortKey] = React.useState<string | null>(null); const [sortDirection, setSortDirection] = React.useState<'asc' | 'desc'>('asc'); const handleSort = (key: string) => { if (sortKey === key) { setSortDirection(sortDirection === 'asc' ? 'desc' : 'asc'); } else { setSortKey(key); setSortDirection('asc'); } }; const sortedData = React.useMemo(() => { if (!sortKey) return data; return [...data].sort((a: any, b: any) => { const aVal = a[sortKey]; const bVal = b[sortKey]; if (aVal === bVal) return 0; const comparison = aVal < bVal ? -1 : 1; return sortDirection === 'asc' ? comparison : -comparison; }); }, [data, sortKey, sortDirection]); return { data: sortedData, setData, sortKey, sortDirection, handleSort}; } |